home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / js / calTodo.js < prev    next >
Text File  |  2007-12-28  |  10KB  |  312 lines

  1. /* -*- Mode: javascript; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Oracle Corporation code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  *  Oracle Corporation
  19.  * Portions created by the Initial Developer are Copyright (C) 2004
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Vladimir Vukicevic <vladimir.vukicevic@oracle.com>
  24.  *   Daniel Boelzle <daniel.boelzle@sun.com>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. //
  41. // calTodo.js
  42. //
  43.  
  44. //
  45. // constructor
  46. //
  47. function calTodo() {
  48.     this.wrappedJSObject = this;
  49.     this.initItemBase();
  50.  
  51.     this.todoPromotedProps = {
  52.         "DTSTART": true,
  53.         "DTEND": true,
  54.         "DTSTAMP": true,
  55.         "DUE": true,
  56.         "COMPLETED": true,
  57.         __proto__: this.itemBasePromotedProps
  58.     };
  59. }
  60.  
  61. // var trickery to suppress lib-as-component errors from loader
  62. var calItemBase;
  63.  
  64. var calTodoClassInfo = {
  65.     getInterfaces: function (count) {
  66.         var ifaces = [
  67.             Components.interfaces.nsISupports,
  68.             Components.interfaces.calIItemBase,
  69.             Components.interfaces.calITodo,
  70.             Components.interfaces.calIInternalShallowCopy,
  71.             Components.interfaces.nsIClassInfo
  72.         ];
  73.         count.value = ifaces.length;
  74.         return ifaces;
  75.     },
  76.  
  77.     getHelperForLanguage: function (language) {
  78.         return null;
  79.     },
  80.  
  81.     contractID: "@mozilla.org/calendar/todo;1",
  82.     classDescription: "Calendar Todo",
  83.     classID: Components.ID("{7af51168-6abe-4a31-984d-6f8a3989212d}"),
  84.     implementationLanguage: Components.interfaces.nsIProgrammingLanguage.JAVASCRIPT,
  85.     flags: 0
  86. };
  87.  
  88. calTodo.prototype = {
  89.     __proto__: calItemBase.prototype,
  90.  
  91.     QueryInterface: function (aIID) {
  92.         if (aIID.equals(Components.interfaces.calITodo) ||
  93.             aIID.equals(Components.interfaces.calIInternalShallowCopy))
  94.             return this;
  95.  
  96.         if (aIID.equals(Components.interfaces.nsIClassInfo))
  97.             return calTodoClassInfo;
  98.  
  99.         return this.__proto__.__proto__.QueryInterface.call(this, aIID);
  100.     },
  101.  
  102.     cloneShallow: function (aNewParent) {
  103.         var m = new calTodo();
  104.         this.cloneItemBaseInto(m, aNewParent);
  105.  
  106.         return m;
  107.     },
  108.  
  109.     clone: function () {
  110.         var m;
  111.  
  112.         if (this.parentItem != this) {
  113.             var clonedParent = this.mParentItem.clone();
  114.             m = clonedParent.recurrenceInfo.getExceptionFor (this.recurrenceId, true);
  115.         } else {
  116.             m = this.cloneShallow(null);
  117.         }
  118.  
  119.         return m;
  120.     },
  121.  
  122.     createProxy: function () {
  123.         if (this.mIsProxy) {
  124.             calDebug("Tried to create a proxy for an existing proxy!\n");
  125.             throw Components.results.NS_ERROR_UNEXPECTED;
  126.         }
  127.  
  128.         var m = new calTodo();
  129.         m.initializeProxy(this);
  130.  
  131.         return m;
  132.     },
  133.  
  134.     makeImmutable: function () {
  135.         this.makeItemBaseImmutable();
  136.     },
  137.  
  138.     get isCompleted() {
  139.         return this.completedDate != null ||
  140.                this.percentComplete == 100 ||
  141.                this.status == "COMPLETED";
  142.     },
  143.     
  144.     set isCompleted(v) {
  145.         if (v) {
  146.             if (!this.completedDate)
  147.                 this.completedDate = jsDateToDateTime(new Date());
  148.             this.status = "COMPLETED";
  149.             this.percentComplete = 100;
  150.         } else {
  151.             this.deleteProperty("COMPLETED");
  152.             this.deleteProperty("STATUS");
  153.             this.deleteProperty("PERCENT-COMPLETE");
  154.         }
  155.     },
  156.  
  157.     get duration() {
  158.         if (!this.entryDate)
  159.             return null;
  160.         if (!this.dueDate)
  161.             return null;
  162.         return this.dueDate.subtractDate(this.entryDate);
  163.     },
  164.  
  165.     get recurrenceStartDate() {
  166.         // DTSTART is optional for VTODOs, so it's unclear if RRULE is allowed then,
  167.         // so fallback to DUE if no DTSTART is present:
  168.         return this.entryDate || this.dueDate;
  169.     },
  170.  
  171.     icsEventPropMap: [
  172.     { cal: "DTSTART", ics: "startTime" },
  173.     { cal: "DUE", ics: "dueTime" },
  174.     { cal: "COMPLETED", ics: "completedTime" }],
  175.  
  176.     set icalString(value) {
  177.         this.icalComponent = icalFromString(value);
  178.     },
  179.  
  180.     get icalString() {
  181.         var calcomp = getIcsService().createIcalComponent("VCALENDAR");
  182.         calSetProdidVersion(calcomp);
  183.         calcomp.addSubcomponent(this.icalComponent);
  184.         return calcomp.serializeToICS();
  185.     },
  186.  
  187.     get icalComponent() {
  188.         var icssvc = getIcsService();
  189.         var icalcomp = icssvc.createIcalComponent("VTODO");
  190.         this.fillIcalComponentFromBase(icalcomp);
  191.         this.mapPropsToICS(icalcomp, this.icsEventPropMap);
  192.  
  193.         var bagenum = this.mProperties.enumerator;
  194.         while (bagenum.hasMoreElements()) {
  195.             var iprop = bagenum.getNext().
  196.                 QueryInterface(Components.interfaces.nsIProperty);
  197.             try {
  198.                 if (!this.todoPromotedProps[iprop.name]) {
  199.                     var icalprop = icssvc.createIcalProperty(iprop.name);
  200.                     icalprop.value = iprop.value;
  201.                     var propBucket = this.mPropertyParams[iprop.name]
  202.                     if (propBucket) {
  203.                         for (paramName in propBucket) {
  204.                             icalprop.setParameter(paramName,
  205.                                                   propBucket[paramName]);
  206.                         }
  207.                     }
  208.                     icalcomp.addProperty(icalprop);
  209.                 }
  210.             } catch (e) {
  211.                 // dump("failed to set " + iprop.name + " to " + iprop.value +
  212.                 // ": " + e + "\n");
  213.             }
  214.         }
  215.         return icalcomp;
  216.     },
  217.  
  218.     todoPromotedProps: null,
  219.  
  220.     set icalComponent(todo) {
  221.         this.modify();
  222.         if (todo.componentType != "VTODO") {
  223.             todo = todo.getFirstSubcomponent("VTODO");
  224.             if (!todo)
  225.                 throw Components.results.NS_ERROR_INVALID_ARG;
  226.         }
  227.  
  228.         this.setItemBaseFromICS(todo);
  229.         this.mapPropsFromICS(todo, this.icsEventPropMap);
  230.         this.mIsAllDay = this.mStartDate && this.mStartDate.isDate;
  231.  
  232.         this.importUnpromotedProperties(todo, this.todoPromotedProps);
  233.         // Importing didn't really change anything
  234.         this.mDirty = false;
  235.     },
  236.  
  237.     isPropertyPromoted: function (name) {
  238.         return (this.todoPromotedProps[name]);
  239.     },
  240.  
  241.     getOccurrencesBetween: function(aStartDate, aEndDate, aCount) {
  242.         if (this.recurrenceInfo) {
  243.             return this.recurrenceInfo.getOccurrences(aStartDate, aEndDate, 0, aCount);
  244.         }
  245.  
  246.         if (checkIfInRange(this, aStartDate, aEndDate)) {
  247.             aCount.value = 1;
  248.             return [this];
  249.         }
  250.  
  251.         aCount.value = 0;
  252.         return [];
  253.     },
  254.  
  255.     set entryDate(value) {
  256.         this.modify();
  257.         
  258.         // We're about to change the start date of an item which probably
  259.         // could break the associated calIRecurrenceInfo. We're calling
  260.         // the appropriate method here to adjust the internal structure in
  261.         // order to free clients from worrying about such details.
  262.         if (this.parentItem == this) {
  263.             var rec = this.recurrenceInfo;
  264.             if (rec) {
  265.                 rec.onStartDateChange(value,this.entryDate);
  266.             }
  267.         }
  268.  
  269.         this.setProperty("DTSTART", value);
  270.     },
  271.  
  272.     get entryDate() {
  273.         return this.getProperty("DTSTART");
  274.     },
  275.  
  276.     mDueDate: undefined,
  277.     get dueDate() {
  278.         var dueDate = this.mDueDate;
  279.         if (dueDate === undefined) {
  280.             dueDate = this.getProperty("DUE");
  281.             if (!dueDate) {
  282.                 var entryDate = this.entryDate;
  283.                 var dur = this.getProperty("DURATION");
  284.                 if (entryDate && dur) {
  285.                     // If there is a duration set on the todo, calculate the right end time.
  286.                     dueDate = entryDate.clone();
  287.                     var icalDur = Components.classes["@mozilla.org/calendar/duration;1"]
  288.                                             .createInstance(Components.interfaces.calIDuration);
  289.                     icalDur.icalString = dur;
  290.                     dueDate.addDuration(icalDur);
  291.                 }
  292.             }
  293.             this.mDueDate = dueDate;
  294.         }
  295.         return dueDate;
  296.     },
  297.  
  298.     set dueDate(value) {
  299.         this.deleteProperty("DURATION"); // setting dueDate once removes DURATION
  300.         this.setProperty("DUE", value);
  301.         return (this.mDueDate = value);
  302.     }
  303. };
  304.  
  305. // var decl to prevent spurious error messages when loaded as component
  306.  
  307. var makeMemberAttr;
  308. if (makeMemberAttr) {
  309.     makeMemberAttr(calTodo, "COMPLETED", null, "completedDate", true);
  310.     makeMemberAttr(calTodo, "PERCENT-COMPLETE", 0, "percentComplete", true);
  311. }
  312.